home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Comm / www / tidy_os4.lha / tidy / src / forward.h < prev    next >
C/C++ Source or Header  |  2004-07-25  |  1KB  |  58 lines

  1. #ifndef __FORWARD_H__
  2. #define __FORWARD_H__
  3.  
  4. /* forward.h -- Forward declarations for major Tidy structures
  5.  
  6.   (c) 1998-2003 (W3C) MIT, ERCIM, Keio University
  7.   See tidy.h for the copyright notice.
  8.  
  9.   CVS Info :
  10.  
  11.     $Author: creitzel $ 
  12.     $Date: 2003/03/19 18:37:44 $ 
  13.     $Revision: 1.3 $ 
  14.  
  15.   Avoids many include file circular dependencies.
  16.  
  17.   Try to keep this file down to the minimum to avoid
  18.   cross-talk between modules.
  19.  
  20.   Header files include this file.  C files include tidy-int.h.
  21.  
  22. */
  23.  
  24. #include "platform.h"
  25. #include "tidy.h"
  26.  
  27. struct _StreamIn;
  28. typedef struct _StreamIn StreamIn;
  29.  
  30. struct _StreamOut;
  31. typedef struct _StreamOut StreamOut;
  32.  
  33. struct _TidyDocImpl;
  34. typedef struct _TidyDocImpl TidyDocImpl;
  35.  
  36.  
  37. struct _Dict;
  38. typedef struct _Dict Dict;
  39.  
  40. struct _Attribute;
  41. typedef struct _Attribute Attribute;
  42.  
  43. struct _AttVal;
  44. typedef struct _AttVal AttVal;
  45.  
  46. struct _Node;
  47. typedef struct _Node Node;
  48.  
  49. struct _IStack;
  50. typedef struct _IStack IStack;
  51.  
  52. struct _Lexer;
  53. typedef struct _Lexer Lexer;
  54.  
  55.  
  56.  
  57. #endif /* __FORWARD_H__ */
  58.